[<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
  STRCAT

  .  Summary

  strcat(str <string1>, str <string2>);

  .  Description

  The strcat function concatenates (adds or appends) one string to the
  other. <string2> is added to the end of <string1>. If <string1> is
  not large enough only as many characters as will fit are added.

  .  Return Value

  None.

  .  Example

  str s[80] = "hello";
  strcat(s, "good-bye");
  if (s == "hellogoodbye")
   prints("This will always be printed");

This page created by ng2html v1.05, the Norton guide to HTML conversion utility. Written by Dave Pearson